FocusRequest

data class FocusRequest(nodeId: NodeId?, backendNodeId: BackendNodeId?, objectId: RemoteObjectId?)

Represents request frame that can be used with DOM#focus operation call.

Focuses the given element.

See also

Constructors

FocusRequest
Link copied to clipboard
fun FocusRequest(nodeId: NodeId? = null, backendNodeId: BackendNodeId? = null, objectId: RemoteObjectId? = null)

Properties

backendNodeId
Link copied to clipboard
val backendNodeId: BackendNodeId? = null
Identifier of the backend node.
nodeId
Link copied to clipboard
val nodeId: NodeId? = null
Identifier of the node.
objectId
Link copied to clipboard
val objectId: RemoteObjectId? = null
JavaScript object id of the node wrapper.

Sources

jvm source
Link copied to clipboard